/* CSS for Hall of Fame Frames */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: white;
  background: linear-gradient(23deg, rgba(0, 20, 60, 1) 0%, #003c78 100%);
}

.hall-of-fame {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.frame {
  background: rgba(0, 40, 80, 0.8);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  color: white;
  overflow: hidden;
  transition: all 0.3s ease;

  /* Neumorphic effect */
  box-shadow: 8px 8px 16px rgba(0, 20, 40, 0.6),
    -8px -8px 16px rgba(0, 60, 120, 0.4);

  /* Subtle inner glow */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.frame:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 20px rgba(0, 20, 40, 0.8),
    -12px -12px 20px rgba(0, 60, 120, 0.6), 0 0 15px rgba(0, 150, 255, 0.3);
}

.frame-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.frame-header img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.frame-header h3 {
  font-size: 1.2em;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.frame-content {
  font-size: 0.9em;
  overflow-y: auto;
  flex-grow: 1;
  line-height: 1.4;
}

.frame-content p,
.frame-content ul {
  margin: 0 0 10px 0;
  padding: 0;
}

.frame-content ul {
  list-style-type: none;
  padding-left: 0;
}

/* Adjust frame sizes */
.frame-small {
  grid-row: span 1;
}
.frame-medium {
  grid-row: span 2;
}
.frame-large {
  grid-row: span 3;
  grid-column: span 2;
}

/* Specific positioning to match the image layout */
.frame:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.frame:nth-child(2) {
  grid-column: 3;
  grid-row: 1 / 3;
}
.frame:nth-child(3) {
  grid-column: 4;
  grid-row: 1 / 2;
}
.frame:nth-child(4) {
  grid-column: 4;
  grid-row: 2 / 4;
}
.frame:nth-child(5) {
  grid-column: 1;
  grid-row: 3 / 5;
}
.frame:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 3 / 5;
}
.frame:nth-child(7) {
  grid-column: 4;
  grid-row: 4 / 5;
}
.frame:nth-child(8) {
  grid-column: 1 / 3;
  grid-row: 5 / 6;
}
.frame:nth-child(9) {
  grid-column: 3 / 5;
  grid-row: 5 / 6;
}

/* Responsive design */
@media (max-width: 768px) {
  .hall-of-fame {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .frame {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

.tittle {
  font-family: "Norican", cursive;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 5rem;
  margin-bottom: 5rem;
}
